home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / tags18.zip / ASMTAG.H < prev    next >
C/C++ Source or Header  |  1991-09-25  |  577b  |  26 lines

  1. /*
  2.  EPSHeader
  3.  
  4.    File: asmtag.h
  5.    Author: J. Kercheval
  6.    Created: Sat, 07/13/1991  12:22:19
  7. */
  8.  
  9. #include <stdio.h>
  10. #include "flags.h"
  11.  
  12. #ifndef BOOLEAN
  13. #define BOOLEAN int
  14. #define TRUE 1
  15. #define FALSE 0
  16. #endif
  17.  
  18. /*----------------------------------------------------------------------------
  19.  *
  20.  * ASMtags() tags an input stream assuming input format of ASM 80x86 format
  21.  * in MASM/TASM syntax
  22.  *
  23.  ---------------------------------------------------------------------------*/
  24.  
  25. void ASMTags(FILE * infile, char *infname, FILE * outfile, Flags * flags);
  26.